home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / os2 / yaos18.zip / YAOSINST.CMD < prev   
OS/2 REXX Batch file  |  1997-04-07  |  593b  |  19 lines

  1. /* YAOS installation program */
  2.  
  3. call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs"
  4. call SysLoadFuncs
  5.  
  6. say "Installing YAOS version 1.8.0 (c) 1996 by LEE Cjin Pheow"
  7. say " "
  8.  
  9. curdir = directory()
  10.  
  11. /* create a new desktop object for YAOS */
  12. If SysCreateObject("WPProgram", "Yet Another OS/2 Shell v1.8.0", "<WP_DESKTOP>",,
  13.      "EXENAME="curdir"\YAOS.EXE;PARAMETERS=-wys yaos.rc;STARTUPDIR="curdir";ICONFILE="curdir"\yaos.ico", "replace") Then
  14.    Say 'YAOS program object has been created successfully.'
  15.    Else Say 'Cannot create YAOS program object!'
  16.  
  17. e new.txt
  18. exit
  19.